home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / kerberos / pc / krb_src.lha / INCLUDE / OSCONF.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  1.3 KB  |  60 lines

  1. /*
  2.  * $Source: /afs/athena.mit.edu/astaff/project/kerberos/src/include/RCS/osconf.h,v $
  3.  * $Author: jtkohl $
  4.  * $Header: /afs/athena.mit.edu/astaff/project/kerberos/src/include/RCS/osconf.h,v 4.4 89/12/19 13:26:27 jtkohl Exp $
  5.  *
  6.  * Copyright 1988 by the Massachusetts Institute of Technology.
  7.  *
  8.  * For copying and distribution information, please see the file
  9.  * <mit-copyright.h>.
  10.  *
  11.  * Athena configuration.
  12.  */
  13.  
  14. #include <mit_copy.h>
  15.  
  16. #ifndef _OSCONF_H_
  17. #define _OSCONF_H_
  18.  
  19. #ifdef tahoe
  20. #include "conf-bsdtahoe.h"
  21. #else /* !tahoe */
  22. #ifdef vax
  23. #include "conf-bsdvax.h"
  24. #else /* !vax */
  25. #if defined(mips) && defined(ultrix)
  26. #include "conf-ultmips2.h"
  27. #else /* !Ultrix MIPS-2 */
  28. #ifdef ibm032
  29. #include "conf-bsdibm032.h"
  30. #else /* !ibm032 */
  31. #ifdef apollo
  32. #include "conf-bsdapollo.h"
  33. #else /* !apollo */
  34. #ifdef sun
  35. #ifdef sparc
  36. #include "conf-bsdsparc.h"
  37. #else /* sun but not sparc */
  38. #ifdef i386
  39. #include "conf-bsd386i.h"
  40. #else /* sun but not (sparc or 386i) */
  41. #include "conf-bsdm68k.h"
  42. #endif /* i386 */
  43. #endif /* sparc */
  44. #else /* !sun */
  45. #ifdef pyr
  46. #include "conf-pyr.h"
  47. #else
  48. #if defined(PC) || defined(__MSDOS__)
  49. #include "conf-pc.h"
  50. #endif /* PC */
  51. #endif /* pyr */
  52. #endif /* sun */
  53. #endif /* apollo */
  54. #endif /* ibm032 */
  55. #endif /* mips */
  56. #endif /* vax */
  57. #endif /* tahoe */
  58.  
  59. #endif /* _OSCONF_H_ */ 
  60.